home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 March / Designer's Club 1998 March.iso / pc / ideasrc / dream.dir / 00103.ls < prev    next >
Encoding:
Text File  |  1998-02-04  |  352 b   |  19 lines

  1. on exitFrame
  2.   go(the frame)
  3.   if not rollOver(4) then
  4.     go("s")
  5.   end if
  6.   repeat with n = 11 to 15
  7.     if rollOver(n) then
  8.       set the visible of sprite n to 0
  9.       updateStage()
  10.     end if
  11.   end repeat
  12.   repeat with n = 11 to 15
  13.     if not rollOver(n) then
  14.       set the visible of sprite n to 1
  15.       updateStage()
  16.     end if
  17.   end repeat
  18. end
  19.